jQuery(document).ready(function () {
	jQuery('#mainnav dd.nav').hover(
		function () {
			jQuery(this).children('p').addClass('hover');
			jQuery(this).children('ul.nav_off').show();	
		},
		function () {
			jQuery(this).children('p').removeClass('hover');	
			jQuery(this).children('ul.nav_off').hide();	
		}
	);	
});
function loadContestslider() {
  jQuery('#contestslider').bxSlider({
	            displaySlideQty: 2,
	            pager: true,
	            pagerLocation: 'top',
	            moveSlideQty: 2               
	        });
}
addLoadEvent(loadContestslider);

