$(document).ready(function() {
	var instanceOne = new ImageFlow();
	instanceOne.init({ 
		ImageFlowID:'carousel',
        reflections: false
	});
	$('#flash').flash({
		swf: '/wp-content/plugins/worldcup/flash/PUMA-TOPb.swf',
		width: 968,
		height: 460
	});
	
	$('.images img:visible').click(function(e) {
		e.preventDefault;
		clicked = this;
		var height = parseInt($(this).css('height'));
		front = true;
		$('.images img:visible').each(function() {
			if (parseInt($(this).css('height')) > height && this != clicked) {
				front = false;
			}
		});
		if (front) {
			var country = $(this).attr('alt');
			Shadowbox.open({
		        content:    '/wp-content/plugins/worldcup/flash/'+country+'.swf',
		        player:     "swf",
		        height:     450,
		        width:      960
		    });
		}
	});
});
