
$("#headerLogoInner").corner("round 8px").parent().css('padding', '4px').corner("round 10px");
if (navigator.appName == "Microsoft Internet Explorer")
{
	$(".headerTitleInner").corner("round 8px").parent().css('padding', '4px');
}
else
{
	$(".headerTitleInner").corner("round 8px").parent().css('padding', '4px').corner("round 10px");
}
$("#navInner").corner("round 18px").parent().css('padding', '4px').corner("round 20px");
$("#contentLeftInner").corner("round 8px").parent().css('padding', '4px').corner("round 10px");
$("#keynoteSpeakersInner").corner("round 8px").parent().css('padding', '4px').corner("round 10px");
$("#indexContentInner").corner("round 8px").parent().css('padding', '4px').corner("round 10px");
$("#secondaryContentInner").corner("round 8px").parent().css('padding', '4px').corner("round 10px");

$(window).resize(function() {
	clipImages();
});

$(document).ready(function() {
	clipImages();
});

function clipImages()
{
  wWidth = $(window).width();
	wHeight = $(window).height();

	cWidth = 0;
	tWidth = 594;
	if (wWidth>956)
	{
		cWidth = (wWidth - 956)/2;
	}
	if (wWidth>844)
	{
		tWidth = 594 + ((wWidth-844)/2);
	}

	$('#cloud_3').css('clip','rect(0px,'+cWidth+'px,187px,0px)');
	$('#trees_right').css('clip','rect(0px,'+tWidth+'px,928px,0px)');

}
