jQuery(document).ready(function($){
   	$('.picmen').hover(
	function(){
				$(this).animate({
    				opacity: 0,
					'-moz-opacity': 0
 				}, 500, function(){
					$('.pictext').animate({
    						opacity: 1
 					}, 200);
				});
	},function(){
				$(this).animate({
    				opacity: 1,
					'-moz-opacity': 1
 				}, 500, function(){});
				$('.pictext').animate({
    						opacity: 0
 				}, 200);
	});	
	$('.picmen2').live('click',(function(){
		alert('etsd');
		location.href = 'index.php?id=249';
	}));
});

