$(function() {
	$(".colorbox").colorbox({width:"460px", height:"540px", iframe:true});
	
	$(".close").click(
		function () {
			$(this).parent().fadeTo(400, 0, function () { // Links with the class "close" will close parent
				$(this).slideUp(400);
			});
			return false;
		}
	);
	
	$('#quote_form').jqTransform({imgPath:'../images/'});
});
