$(document).ready(function(){
	//Font Size Changer
	loadFontSize("#content-wrapper");
	
	//Fix for IE Rounded corners.
	roundDiv('content');
	
	if(jQuery.browser.msie)
	{
		$("div#stopbutton").pngFix();
	}
	
	$(".cf_date").datepicker({
		changeMonth: true, 
		changeYear:true, 
		dateFormat:"dd/mm/yy", 
		minDate: '-100Y',
		yearRange: '-100:+1',
		maxDate: '+1D',
		showButtonPanel: true,
		showOn: 'both', 
		buttonImage: 'http://jqueryui.com/demos/datepicker/images/calendar.gif', 
		buttonImageOnly: true
	});
});

function roundDiv(id){
	var tmp_width = $('#'+id+'').css("width"); //get the width of target el
	$('#'+id+'').css("width",""); //clear width value (or else corners screws up)
	$('#'+id+'').wrap('<div class="rounded_border" style="width: ' +tmp_width+ ';"></div>'); //apply border
	$('#'+id+'').corner("round 8px").parent().css('padding', '4px').corner("round 14px"); //round box and border
}
