
					var $j = jQuery.noConflict();
					$j(document).ready(function(){
						$j('#header ul li.parent').hover(
							function() {
								$j(this).addClass("actives");
								$j(this).find('> ul').stop(false, true).fadeIn();
								$j(this).find('>ul ul').stop(false, true).fadeOut('fast');
								Cufon.refresh();
							},
							function() {
								$j(this).removeClass("actives");        
								$j(this).find('ul').stop(false, true).fadeOut('fast');
								Cufon.refresh();
							}
						);
						$j('.ulwrapper').hover(
							function() {
								$j('.parent').addClass("active_tab");
								Cufon.refresh();
							},
							function() {
								$j('.parent').removeClass("active_tab"); 
								Cufon.refresh();       
							}
						);
						$j('#s4')
						.after('<div id="nav">') 
						.cycle({ 
						fx:     'fade', 
						speed:  1000, 
						timeout: 3000, 
						pause: 1,
						pager:  '#nav',
						cleartypeNoBg: true 
					});
					$j('#s6').cycle({ 
						fx:     'scrollVert', 
						timeout: 9000, 
						delay:  1000,
						speed:  800, 
						next:   '#next2', 
   						prev:   '#prev2' 
					});
					});
					


			
