//$(document).ready(function() {
$.noConflict();
jQuery(document).ready(function($) {


	// GO GO sliders
		$(function(){ 
			$("#blinds").slides({
				container: 'slides_container',
				pagination: true,
				generatePagination: false,
				paginationClass: 'pagination',
				play: 6000,
				hoverPause: true,
				pause: 1500,
				effect: 'slide',
				crossfade: true,
				autoHeight: true,
				autoHeightSpeed: 350
			});
		});

});


jQuery(document).ready(function($) {
	$(".lightbox").lightbox();
});


jQuery(document).ready(function($) {
	$('#subscribe').mouseover(
		function(){ // Change the input image's source when we "roll on"
			$(this).attr({ src : 'images/submit-onPress.png'});
		}
	);
	
	$('#subscribe').mouseout(
		function(){ // Change the input image's source back to the default on "roll off"
			$(this).attr({ src : 'images/submit-onStandard.png'});
		}
	);
});


jQuery(document).ready(function($) {
	$('#flashSlides').cycle({
		fx: 'fade',
		speed: 6000,
		timeout: 3000
	});
}); 

