$(document).ready(function(){
	
	/* Drop Downs */
	$('.top_nav li.drop').find('.dd_nav').hide();
	$('.top_nav li.drop').hover(function () {
			$(this).find('.dd_nav').stop(true, true).slideDown(500);
	}, function(){
			$(this).find('.dd_nav').stop(true, true).delay(100).slideUp(500);	
	});
	
	/* Animate Drop Down Text Colour */
	$(".dd_nav li a").hover(function(){ $(this).animate({ color: '#666' }, 300 ); }, function(){ $(this).animate({color: '#FFF'}, 300); });
	
	/* Vid Player */
  	//$('.vid_list li').each(function(index) {
    	//$(this).click(function(){ window.location = $(this).children('a').attr('href') });
  	//});
	$('.vid_list li').live('hover', function(){
		
		$(this).click(function(){
			window.location = $(this).find('a').attr('href');
			//$('.vid_player').html('').load("" + $(this).find('a').attr('href') + " .vid_player");
		});
	
	});
	
	$('.blog_container .blog_content, .blog_container .blog_footer').css('opacity',0.5);
		
	//$("ul.vid_list li.not_sel, ul.vid_list li.sel").hover(function(){ $(this).animate({ color: "#585858" }, 300 ); }, function(){ $(this).animate({color: "#948f8f"}, 300); });    
	
	$("ul.vid_list li.not_sel").click(function(){
		$("ul.vid_list li.sel").removeClass('sel').addClass('not_sel');
		$(this).removeClass('not_sel').addClass('sel').css({color: "#585858"});
	});
	$("ul.vid_list li.sel").click(function(){
		$("ul.vid_list li.sel").removeClass('sel').addClass('not_sel');
		$(this).removeClass('not_sel').addClass('sel').css({color: "#585858"});
	});
	
	$(".tweet").tweet({
        username: "FemaleEyeFilmFe",
        join_text: "auto",
        avatar_size: null,
        count: 3,
        auto_join_text_default: "", //"we said,", 
        auto_join_text_ed: "", //"we",
        auto_join_text_ing: "", //"we were",
        auto_join_text_reply: "", //"we replied to",
        auto_join_text_url: "", //"we were checking out",
        loading_text: "loading tweets..."
    });
    
    var badBrowser = (/MSIE ((5\.5)|6)/.test(navigator.userAgent) && navigator.platform == "Win32");
   	if (badBrowser) {
   		$("#sidebar3").append('<img src="wp-content/themes/feff/assets/img/ad/160x600-vert.jpg" width="150" height="600" alt="ad" />');
    } else {
    	$("#sidebar3").append('<img src="wp-content/themes/feff/assets/img/ad/160x600-vert.jpg" width="160" height="600" alt="ad" />');
    }	
	
	$('a[rel*=facebox]').facebox();
		
});

