$(document).ready(function() {
$('.roundedCornerMain').cornerz({
radius: 10,
background: ("#DBE7F0")  
})

$('#header').cornerz({
radius: 10,
background: ("#DBE7F0"),
corners: ("tl tr")  
})

$('#tabs a').cornerz({
radius: 5,
background: ("#A5C3DB"),
corners: ("tl tr")  
})

$('#footer').cornerz({
radius: 10,
background: ("#DBE7F0"),
corners: ("br bl")  
})

$('.roundedCornerLeft').cornerz({
radius: 10,
background: ("#A5C3DB")  
})

$('#navLeft li a').cornerz({
radius: 5,
background: ("#A5C3DB")  
})

})

window.onload = function(){
$(".shadow").dropShadow({left: 2, top: 2, opacity: 0.3, blur: 1});
;}

$(function(){
	positionFooter(); 
	function positionFooter(){
		if($(document.body).height() < $(window).height()){
			$("#footer").css({position: "absolute",top:($(window).scrollTop()+$(window).height()-$("#footer").height())+"px"})
		}	
	}
 
	$(window)
		.scroll(positionFooter)
		.resize(positionFooter)
});

$(document).ready(function() {
$(".zoom").imgbox({
'speedIn'		: 0,
'speedOut'		: 0,
'alignment'		: 'center',
'overlayShow'	: true,
'allowMultiple'	: false
});
});



