
(function($) {

	$.fn.hoveref = function(){
	  
		// default configuration properties


			var bgcolor ="" ;	
		this.children().each(function() {  				

				 $(this).prepend("<div class='tempdiv'>&nbsp;</div>"); 
				 $(this).children(".tempdiv").hide();
			$(this).hover(function(e){	
						
			$(this).children(".tempdiv").animate({"opacity":"show"}, 200);				
			
					
				}, function() {
				$(this).children(".tempdiv").animate({"opacity":"hide"}, 600);	
				
				}
			
			);	

		});
	  
	};

})(jQuery);

(function($) {

	$.fn.filtr = function(){ 

		this.children().each(function() {  	
		$(this).children("H4").click(function() { 
		$(this).parent().hide(); 
		});
		
		});
	}
	
	
})(jQuery);




$(document).ready(function(){	
	$("#hoverli").hoveref();

});
// show additional filtres

$(document).ready(function(){	
	$("#hidefltr").filtr();
	$("#shtag").click(function(){	//hidefltr
	$("#shtagd").show();
		}
	
	);
	$("#shyear").click(function(){	//hidefltr
	$("#shyeard").show();
		}
	
	);
	$("#shtehno").click(function(){	//hidefltr
	$("#shtehnod").show();
		}
	
	);
	$("#shprogram").click(function(){	//hidefltr
	$("#shprogramd").show();
		}
	
	);  	
  	
	$("#shclient").click(function(){	
	$("#shclientd").show();
		}
	);
	
	$("body").mouseup(function() { $("#hidefltr").children().hide(); 
		});

});
