$(document).ready(function() {
	
	$("a.fashion").fancybox({
		
		 'frameWidth': 480,
         'frameHeight': 270,
              'callbackOnClose': function() { 
		$("#fancy_content").empty(); 
	}
 
	});
	
	
	$("a.fashion").click(function () {
      var htmlStr = $(this).html();
      $(this).text(htmlStr);
    });
    


});

