$(document).ready(function(){
	
	//alert(document.location.href)
	if(document.location.href!='http://www.carlsberg.lt/') website()

	// target _blank
	$("a[rel='external']").click(function() {
		window.open( $(this).attr("href") )
		return false
	})

	$('#website').flash(
        { src: 'loader.swf',
          width: 980,
          height: 550,
		  //wmode: 'transparent',
		  flashvars: { domain: '*', xmlPath: 'contents/xml/xmlfeed.xml', target: '100PercentFootball.swf' },
		  expressInstall: false 
		  },
	   
        { version: 9 }
    )

	$(".no").click(function() {
		
		$("#main").removeClass('bg_1')
		$("#main").addClass('bg_2')
		
		$("#yes").hide()
		$("#no").hide()
		
		return false
	})
	
	$(".yes").click(function() {		
		website()		
		return false
	})
	
})

function website(){
	$("#website").show()
	$("#main").hide()
}
