

$().ready(function(){
	
	 	$('#myselectbox').selectbox();
	$('#myselectbox2').selectbox();
	 	$('#myselectbox3').selectbox();
	$('#myselectbox4').selectbox();
	 	$('#myselectbox5').selectbox();
	$('#myselectbox6').selectbox();
	 	$('#myselectbox7').selectbox();

$("input[type=file]").filestyle({ 
     image: "../images/choose-file.gif",
     imageheight : 22,
     imagewidth : 82,
     width : 176
 });	
	
	
	if ($('#list').length>0){
		$('#list').accordion({
			active: true, 
    		alwaysOpen: false,
     	 	autoheight: false,
			clearStyle: true
		});
	}
	
	
		/*$('#menu_left').accordion({
			header : ".head",
			 active: true, 
    alwaysOpen: false,
      autoheight: false
		});
		$("div.head a").click(function(){
			$("div.head a").removeClass("active");
			$(this).addClass("active");
		});*/


	//slides the element with class "menu_body" when paragraph with class "menu_head" is clicked 
	$("#lista p.menu_head").click(function()
    {
		$(this).css({backgroundImage:"url('images/s2.gif')"}).next("div.menu_body").slideToggle(300).siblings("div.menu_body").slideUp("slow");
       	$(this).siblings().css({backgroundImage:"url('images/s1.gif')"});
	});

	
	//Round top header image
	$('#header_img').corner("cc:#eee top");

	//$("#main, #col_left, #right").equalizeCols();


});



