$(document).ready(function() {

	$("#enter_link").click(
		function(){
			$("#enter_link_img").fadeIn('slow', 
				function() {
					window.location = $(this).parent().attr('href');
				}
			);
			return false;
		}

	);
	
	
	$("#get_sexy_links a").click(
		function(){
			bottle_id = $(this).attr('rel');
			link = $(this).attr("href");
			$("#get_sexy_bottles img").hide();
			$("#"+bottle_id).fadeIn('slow', function(){ window.location = link; });
			return false;
		}
	);

	if ( $("#preloader").length > 0 ) {
		$("#preloader").show();
	}

	$("#follow_link").click(function() {
		$("#follow").toggle( 'blind',{},300 );
		return false;
	});
	
	$("#likes_dislikes").click(function() {
		$("#likes_dislikes_content").toggle( 'blind',{},600 );
		return false;
	});

	$("#close").click(function() {
		$(this).parent().parent().toggle( 'blind',{},200 );
		return false;
	});

	$("#footer a").click(function() {
		var winpops=window.open($(this).attr('href'), 'popup', 'status=0,menubar=0,toolbar=0,resizable=0,scrollbars=1,location=0,statusbar=0,menubar=0,width=400,height=600');
		return false;
	});

});

$(window).load(function() {

	if ( $("#preloader").length > 0 ) {
		$("#preloader").fadeOut().remove();
	}

});



