jQuery(function(){
    jQuery(".selects select").selectbox();
    jQuery('.cat_more_1').click(function () {
					$(this).parent().prev().toggle();
                    $(this).toggleClass("cat_more_show");
                    $("span",this).toggle();
				  });
	jQuery('.cat_image').hover(function(){
			jQuery('.plus',this).show();
		},
		function(){
			jQuery('.plus',this).hide();
		});
	jQuery('.cat_image_first').hover(function(){
			jQuery('.plus',this).show();
		},
		function(){
			jQuery('.plus',this).hide();
		});
	 jQuery('div.cat_images a').lightBox();
	 jQuery('td .cat_image').lightBox();
	 jQuery('.textwrapper .cat_image').lightBox();
	 jQuery('.demo a').lightBox();
	 
	 // open / Close LoginForm
       // jQuery("#user_login").click(function(){ jQuery("#login-form-window").show();});
		jQuery('#j_overlay').click(function() { jQuery("#login-form-window").hide();});

	 
	 //filter
	  var selects = jQuery('#select_p select');
		jQuery('#select_p .submit').hide();
		jQuery(selects).change(function() {
			var action = jQuery('#select_p').attr("action");
			var str = jQuery('#select_p').serialize();
			//document.location.href=action+"?"+str;
			//jQuery.post(action,str,,function(data){});
			jQuery('#select_p').submit();
		});
		
	//menu - hover	
	jQuery('.menu a').hover(function(){
			jQuery('.hover',this).show();
		},
		function(){
			jQuery('.hover',this).hide();
		});	
});
