$(document).ready(function() {
	
	$("a.fancy").fancybox({
		'titleShow'		: false,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic'
	});
	
		$("#gallery a").click(function () {
			//Get Button "name" attribute value
	      	var title = $(this).attr("title");
	      	
	      	$("img#iPhone").remove();
	      	
	       	$('<img src="/img/iphones/cupcakes1.5/'+title+'" alt="Cupcakes Shop Matching 1.5 iOS App" id="iPhone">').appendTo('#hero');
	      	
	   	});

	
});