jQuery.noConflict();

// Put all your code in your document ready area

jQuery(document).ready(function($){

// Do jQuery stuff using $ this where the functions need to go   


		$(document).ready(function() {
		
		
			 // ======================= ADD PRINT BUTTON TO BOTTOM UL =========================
			
				$('p#print_page a').click(function() {
					window.print();
					return false;
				});
		
		
			 // ======================= HOMEPAGE SLIDER =========================
							
							$('div#homeslide').cycle({ 
								random: true, 
								fx:     'fade', 
								timeout: 99999999999999999, 
								delay:  -99999,
								speed: 1,
								cleartypeNoBg: true,
								next:   '#next', 
   								 prev:   '#prev' 
							});	
							
							$('div.sidebarslider').cycle({ 
								fx:     'fade', 
								timeout: 2000, 
								delay:  -3,
								cleartypeNoBg: true
								
							});	
							
								$('div.marketslider').cycle({ 
								fx:     'fade', 
								timeout: 2000, 
								delay:  -3,
								cleartypeNoBg: true
								
							});	
								
									$('div.marketslider_two').cycle({ 
								fx:     'fade', 
								timeout: 4000, 
								delay:  -3,
								cleartypeNoBg: true
								
							});	
									
									$('div.marketslider_home').cycle({ 
								fx:     'fade', 
								timeout: 4000, 
								delay:  -3,
								cleartypeNoBg: true
								
							});	
							
							
							
	
		});	
		
			// ======================= Caption Sliding (Partially Hidden to Visible) ========================= 
			 
			  $('.boxgrid').hover(function(){  
				  $(".cover", this).stop().animate({top:'86px'},{queue:false,duration:160});  
			   }, function() {  
				   $(".cover", this).stop().animate({top:'177px'},{queue:false,duration:160});  
			   });  

			
			});
