jQuery("ul#featured_posts_mini_list li a span").css({ opacity: 0.9 })
jQuery("ul#featured_posts_mini_list li a").css({ opacity: 0.7 }).hover(
	function () {
		
		// if (jQuery(this).children(".brief").text() == "") {
		// 	jQuery(this).children(".brief").text("Hello there");
		// }
		// 
		// jQuery(this).children(".brief").css({top:"-195px",left:"-507px"}).show().animate({top:"-200px",left:"-502px"},100);
		
		jQuery(this).children(".featured_story_title").stop().animate({
			height:"40px",
			top:"50px"
		},100);
		
		jQuery(this).stop().fadeTo(200,1);
	},
	function () {
		// jQuery(this).children(".brief").hide().css({top:"-195px",left:"-507px"});
		
		jQuery(this).children(".featured_story_title").stop().animate({
			height:"12px",
			top:"78px"
		},100);
		
		jQuery(this).stop().fadeTo(200,0.7);
	}
);

jQuery(".sociable img").css({ opacity: 0.5 }).hover(
	function() {
		jQuery(this).stop().fadeTo(100,1);
	},
	function() {
		jQuery(this).stop().fadeTo(500,0.5);
	}
);


jQuery(".brief .size-medium").css({width:"100px",height:"auto"});


jQuery("#css3-toggle").click(function() {
	if (jQuery("body").hasClass("css3")) {
		jQuery("#css3-toggle").html("Enable CSS3 Effects");
		jQuery("body").removeClass("css3");
		setCookie("tgm_css3_toggle","false",365);
	} else {
		jQuery("#css3-toggle").html("Disable CSS3 Effects");
		jQuery("body").addClass("css3");
		setCookie("tgm_css3_toggle","true",365);
	}
});


jQuery("div.close_btn").click(function(){
	jQuery("div#information_bar").slideToggle(500);
});


jQuery(".comments-number").hover(
	function(){
		jQuery(this).stop().animate({"font-size":"1.1em"},100);
	},
	function(){
		jQuery(this).stop().animate({"font-size":"1em"},100);
	}
);



























function setCookie(c_name,value,expiredays) {
	var exdate=new Date();
	exdate.setDate(exdate.getDate()+expiredays);
	document.cookie=c_name+ "=" +escape(value)+((expiredays==null) ? "" : ";expires="+exdate.toGMTString());
}


































jQuery(document).ready(function (){
    var hide_infobar = new PeriodicalExecuter(function(pe) {
    	jQuery("div#information_bar").slideToggle(250);
    	pe.stop();
    }, 30);
    
    jQuery(".buysellads_item").show();
    jQuery(".post_rates_req_javascript").hide();
    jQuery(".post_ratings").show();
    jQuery(".ad_banner_space .ad_banner").show();
    
    
});




