$(function() {
	$('#iphone').hover(function() {
		$(this).stop().animate({
			paddingTop: 0
		}, 300, 'swing', function() {
			$('#iphone ul').css('backgroundImage', 'url(/wp-content/themes/fubra/images/iphone/battery_drain.gif)');
		});
	},
	function() {
		$(this).stop().animate({
			paddingTop: 175
		}, 100, 'swing', function() {
			$('#iphone ul').css('backgroundImage', 'url(/wp-content/themes/fubra/images/iphone/battery.gif)');
		});
	}).mouseout();
	$('ul.thumbs a').click(function(e) {
		e.preventDefault();
		$('ul.thumbs a').removeClass("selected");
		$(this).addClass("selected");
		var img = $('#iphone_app img'), thumb = $(this).attr('href');
		if (img.attr('src') != thumb) {
			img.stop(true, true)
				.fadeOut('fast')
				.attr('src', thumb)
				.fadeIn('slow');
		}
	})
	.filter(":first")
	.click();
});