$(document).ready(function(){
								
	//image rollover
	$("a.roll_next").bind('mouseover focus', function(event) {
		$(this).find('img').attr("src", $(this).find('img').attr("src").split('0008/56969/btn_next_f1.gif').join('0009/56970/btn_next_f2.gif'))
	}).bind('mouseout blur', function(event) {/*mouseout*/
		$(this).find('img').attr("src", $(this).find('img').attr("src").split('0009/56970/btn_next_f2.gif').join('0008/56969/btn_next_f1.gif'))
	});

	$("a.roll_previous").bind('mouseover focus', function(event) {
		$(this).find('img').attr("src", $(this).find('img').attr("src").split('0010/56971/btn_previous_f1.gif').join('0011/56972/btn_previous_f2.gif'))
	}).bind('mouseout blur', function(event) {/*mouseout*/
		$(this).find('img').attr("src", $(this).find('img').attr("src").split('0011/56972/btn_previous_f2.gif').join('0010/56971/btn_previous_f1.gif'))
	});

//remove hide for the multiple ads when js off
	$('#ads_content .hidden').removeClass('hidden');
	$('#ads_content .hidden').css('display', 'block');
	$('div.fixed div.hidden').removeClass('hidden');

//remove hide for the multiple tabs when js off
	$('div.tabs_content #tab_two').removeClass('hidden');
	$('div.tabs_content #tab_three').removeClass('hidden');

//remove hide for the multiple tabs navigation links when js off
	$('ul.tabs_nav li').removeClass('hidden');


    // run the code in the markup!    
    $('#ads_content').cycle({ 
    fx:     'fade', 
    speed:  1500, 
    timeout: 5000, 
    next:   '#next', 
    prev:   '#prev'
	
	});
	return false;

});

