$(document).ready(function(){
				//Examples of how to assign the ColorBox event to elements
				$("a[rel='example4']").colorbox({slideshow:false});
				
				
				
				$(window).load(function() {
					$('#slider1, #slider2, #slider3, #slider4, #slider5, #slider6, #slider7, #slider8, #slider9, #slider10, #slider11, #slider12, #slider13, #slider14').nivoSlider({
							effect:'fold', //Specify sets like: 'fold,fade,sliceDown'
							pauseTime:9999999999,
							manualAdvance:true, //Force manual transitions
						});
				});
				
			
				
				// hides the slickbox as soon as the DOM is ready
				 // (a little sooner than page load)
				  $('#contact_pop').hide();
				 // shows the slickbox on clicking the noted link  
				

				 // toggles the slickbox on clicking the noted link  
				  $('.email').click(function() {
				    $('#contact_pop').slideToggle(400);
				    return false;
				  });
				
			
				var $elem = $('.home');


				    $('#diabanner').click(
				        function (e) {
				            $('html, body').animate({scrollTop: $elem.height()}, 800);
				        }
				    );
				
				
				
			});
			

