jQuery(document).ready(function() {	
    jQuery('.jcarousel-skin-tango').jcarousel({
        auto: 0,
        wrap: 'last',
        initCallback: mycarousel_initCallback
    });	
	
	jQuery("a.thumb, img.thumb, embed.thumb").thumbs(); // the wrapping function
	jQuery("a.thumb img, img.thumb, embed.thumb").thumbsImg(); // the img positioning function (optional)
	
	$(".entry-content").hover(function(){
										$(this).parent().find(".entry-detail").show();	
										},function(){
										$(this).parent().find(".entry-detail").hide();										
										}
							   )
	$("#comments").hover(function(){
										$(this).find("#commentform").show();	
										},function(){
										$(this).find("#commentform").hide();										
										}
							   )

});

