$(function(){	
	$('#codeGC').hide();
	$('#info .close').click(function() {
		$('#iframeHolder').remove();
	});
	
	$('#showGC').click(function() {
								
		var ilink = $(this).attr('href');
		
		$(this).hide();
		$('#codeGC').show();
		
		$('<a class="zumshop" href="'+ilink+'" title="Zum Shop" target="_blank">Fenster maximieren</a>').appendTo("#iframeHolder #info");
		
		$('#iframeHolder').show(function() {										 
			$('<iframe id="frame" src="'+ilink+'" width="100%" height="350" frameborder="0" scrolling="auto"></iframe>').appendTo(this);				 
		 });

		return false;
	});
});
