// home.js

$(document).ready(function() {
	$(".image").mouseover(function () { $(this).css("border-color","#e61577"); });
	$(".image").mouseout(function () { $(this).css("border-color","#CCC"); });
	$("#home_vote_forget").bind("click", function() { new_location='http://fashrate.com/fashion/?voteid='+ pic_id + '&v=forget';self.location.href=new_location; } );
	$("#home_vote_love").bind("click", function() { new_location='http://fashrate.com/fashion/?voteid='+ pic_id + '&v=love';self.location.href=new_location; } );
});
