var jq = {
	
	init:function() {
		$(function() {
			
			$('#selectProduct').click(function() {
				$(this).stop().stop().delay(300).fadeTo(200, 1);
				$(this).animate({
					"height" : "500px"
				});
			});
						
			$('#selectProduct').hover(function() {
				//$(this).stop().stop().delay(300).fadeTo(200, 1);
				//$(this).animate({
					//"height" : "485px"
				//});
			}, function() {
				$(this).stop().delay(300).animate({
					"height" : "13px"
				});
				$(this).fadeTo(100, 0);
			})//end $(#productSelect)
		}); //end function
		
		if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)) || (navigator.userAgent.match(/iPad/i))) {
			$('#selectProduct').bind('touchstart', function(){
				$(this).stop().fadeTo(200, 1);
				$(this).animate({
					"height" : "455px"
				});
			}) //end click
		} //end if
	}, //end init
	
	scrollStory:function(amt) {
		$('#storyInfo').animate({
			"top" : amt + "px"
		}); //end animate
	} //end scrollStory
	
} //end jq
