$(function() {
/* For Rounded Corners */
	$('.specials, .planbox, #navigation, .planbox-inside').corner("10px");
	$('.contentarea').corner("keep 5px");
	$('#underfooter, .tableheading').corner("top 10px");
	$('.leftround').corner("bl 10px");
	$('.rightround').corner("br 10px");
/* For Hover Effetcs */
	$('#livechat, .planprice').animate({"opacity" : .75}, 0);
	
	$('#livechat, .planprice').hover(function() {
		$(this).stop().animate({"opacity" : 1}, 250);
	}, function() {
		$(this).stop().animate({"opacity" : .75}, 200);
	});
/* For Underfooter Effects */
	$('#underfooter a').hover(function() {
		$(this).stop().animate({"padding-left" : "10px"}, 220);
	}, function() {
		$(this).stop().animate({"padding-left" : "0"}, 150);
	});
/* For Contact Form Labels Effects */
	$(".contactform label").inFieldLabels();
});
