 $(document).ready(function(){
	
   $("div.send").hide();
   $("div.home_short_item_title").click(
	function() {
	
		if ($(this).attr("down")==1) {
			$(this).attr("down",0);
			$(this).css("font-weight","normal");
			$("div#"+$(this).attr("id")+"_description").slideUp("normal");
		}
		else {
			$(this).attr("down",1);
			$(this).css("font-weight","bold");
			$("div#"+$(this).attr("id")+"_description").slideDown("normal");
			
		}

	}

 	 );



 });






 $(document).ready(function(){

   $("li.tab").click(
	function() {

		$("li.tab").attr('class','tab');
		$(this).attr('class','tab tabsel');

		$("div.tabcontent").hide();
		

		$("div."+$(this).attr('id')).show();
		sifr_show();
		


	}

 	 );

 });