//

jQuery(document).ready(function($){

// 1.0 Box-shadow

	//Bullet Home 
	var box_shadow_list_01 = new Array(
		".service_bullets_box .bullet_box_title"
	);
		//CSS
		$(""+box_shadow_list_01+"").css({
			'-moz-box-shadow':'0px 1px 3px #002F4A',
			'-webkit-box-shadow':'0px 1px 3px #002F4A'
		});

// 2.0 Border-radius
	//10 px radius
	var box_radius_list_01 = new Array(
		".service_bullets_box .bullet_box_title",
		".hot_topics_box"
	);
		//CSS
	$(""+box_radius_list_01+"").css({
		'-webkit-border-radius':'10px',
		'-moz-border-radius':'10px'
	});

//ENDS HERE	
});
