$(document).ready(function(){
	function getShopName(shopId) {
		if (136 == shopId) {
			return "web";
		} else if (137 == shopId) {
			return "ftd";
		} else if (138 == shopId) {
			return "mens";
		} else if (139 == shopId) {
			return "freenet";
		} else if (140 == shopId) {
			return "gmx";
		} else {
			return "web";
		}
	}
	
	var base = 'http://shops.apprupt.com/de/shop/index';
	var shop = $('select option:selected').val();
	var link = base + '/Demoshop/' + shop + '/';

		$('iframe').attr({ 
          src: link
        });
	
	$('#' + getShopName(shop)).show();
	
	//shop change
	$('select').change(function(){
		shop = $('select option:selected').val();
		link = base + '/partner/' + shop + '/';
		
		$('iframe').attr({ 
          src: link
        });
		
		$('.description').hide();
		$('#' + getShopName(shop)).show();
	});
});

