function toggleBanner(){
	$('#banner').animate({height: '452px'},1000);
}

function shrinkBanner(){
	$('#banner').animate({height: '333px'},1000);
}


$.noConflict();

jQuery(document).ready(function() {

	jQuery('#nav li.shop').hover(function() {
		jQuery("#shop-dropdown").fadeIn("fast", "linear");
	},
	function () {
		jQuery("#shop-dropdown").fadeOut("fast", "linear");
	});
	
	
	jQuery('#current-flag').click(function() {
		jQuery("#selector").toggle();
 	});
});

