$(document).ready(function() {

	$(".clickprofile").click(function(){ 
		window.location=$(this).parent("div").find("a").attr("href");
		return false;
	});
	
	// $("#gallery img:odd").css({borderLeftWidth:1, borderStyle:"solid", borderColor: "#000"});

	/*
	$('h1').css({background:"#FFB"}).toggle(function() { $(this).animate({width:300}, 1000);},function() { $(this).animate({width:"100%"}, 1000);})
	*/
	
	
	$(".clickprofile").hover(function(){
	  $(this).stop().css({ 
	  backgroundColor: "#fff", opacity: 0.1 })
	  .animate({ opacity: 0 }, "slow");
	  return false;
	});
	/*
	$('.menu li a:hover').hover(function() {
										 
		$(this).stop().animate({
			color: "#ffffff"
		}, "normal");
	},function() { //mouseout
		$(this).stop().animate({
			color: "#ccc"
		}, "fast");
	});
	*/


	/*
	$(".clickprofile").hover(function(){
	  $(this).stop().css({ 
	  borderWidth:5, borderStyle:"solid", borderColor: "#000", backgroundColor: "#cc006a", opacity: 0.3, width:125, height:232, top:-10, left:-10 })
	  .animate({ opacity: 0, borderWidth:1, borderColor:"#fff", width:115, height:222, top:0, left:0 }, "slow");
	  return false;
	});
	*/
	
	/*
	$('.books-viewvideo').hover(function() {
		$(this).find("+ .books-boom").find("img").stop().animate({left:-3, top:-2, width:65, height:53}, 400, "easeOutCubic");
	}, function() {
		$(this).find("+ .books-boom").find("img").stop().animate({left:0, top:0, width:59, height:47}, 400, "easeOutSine");
	});
	*/
	
});