// JavaScript Document

$(document).ready(function(){	
						   
						   
			$("#slider").easySlider({
				controlsBefore:	'<p id="controls">',
				controlsAfter:	'</p>',		
				prevId: 'prevBtn',
				nextId: 'nextBtn',
				vertical: true
			});	
				$("#slider2").easySlider({
				controlsBefore:	'<p id="controls">',
				controlsAfter:	'</p>',		
				prevId: 'prevBtn2',
				nextId: 'nextBtn2',
				auto: true,
				pause: 16000
			});	

				//Caption Sliding (Partially Hidden to Visible)
				$('.boxgrid.caption').hover(function(){
					$(".cover", this).stop().animate({top:'140px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'180px'},{queue:false,duration:160});
				});
				
				
				//POP UP	
				$('a.basic').click(function (e) {
		e.preventDefault();
		$('#basic-modal-content').modal();
	});
				

				
			
	
			

			
			});

