var j = jQuery.noConflict();

j(document).ready(function(){

	j(".item").bind("mouseenter", function(){
		j(this).children(".entrythumb").children(".play").show();
	});

	j(".item").bind("mouseleave", function(){
		j(this).children(".entrythumb").children(".play").hide();
	});
	
	j(".info > h1 > a").bind("mouseenter", function(){
		j(this).animate({
			"opacity" : 0.7
		});
	});
	
	j(".info > h1 > a").bind("mouseleave", function(){
		j(this).animate({
			"opacity" : 1
		});
	});
	
	j("#primary > ul > li > a").bind("mouseenter", function(){
		j(this).animate({
			"opacity" : 0.7
		});
	});
	
	j("#primary > ul > li > a").bind("mouseleave", function(){
		j(this).animate({
			"opacity" : 1
		});
	});
	
	j(".desc > h2").bind("mouseenter", function(){
		j(this).animate({
			"opacity" : 0.7
		});
	});
	
	j(".desc > h2").bind("mouseleave", function(){
		j(this).animate({
			"opacity" : 1
		});
	});
	
	j(".lcpost > .right > h2").bind("mouseenter", function(){
		j(this).animate({
			"opacity" : 0.7
		});
	});
	
	j(".lcpost > .right > h2").bind("mouseleave", function(){
		j(this).animate({
			"opacity" : 1
		});
	});
	
	api = j("#videoscroll").scrollable({ size : 1 }).circular().autoscroll({
		autoplay : true,
		api : true
	});
	
});
