// JavaScript Document
$(document).ready(function(){


	$('.bigpolaroid-cta:first-child').mouseenter(function(){
		$('#big-postit .frame:first-child').addClass('hover');
	});
	$('.bigpolaroid-cta:first-child').mouseleave(function(){
		$('#big-postit .frame:first-child').removeClass('hover');
	});
//#big-postit .frame
	
});


