// JavaScript Document
$(document).ready(function(){
			
	$('#gotoTop').click(function(e){
		e.preventDefault();
		$('html, body').animate({scrollTop: 0}, 1000);
	});
	
	
	$('#Devwork').click(function(e){
		e.preventDefault();
		//$('#box').animate({scrollTop: $('#box > .inner').outerHeight()});
		$('html, body').animate({scrollTop: 240}, 800);
	});
	
	$('#Devskills').click(function(e){
		e.preventDefault();
		//$('#box').animate({scrollTop: $('#box > .inner').outerHeight()});
		$('html, body').animate({scrollTop: $('html, body')[0].scrollHeight}, 1500);
	});
	$('#ContactMe').click(function(e){
		e.preventDefault();
		//$('#box').animate({scrollTop: $('#box > .inner').outerHeight()});
		$('html, body').animate({scrollTop: $('html, body')[0].scrollHeight}, 1500);
	});


	
		   
	$("#backToTop").hover(
      function () {
        $(this).attr("src","images/UpButtonOn.png");

      }, 
      function () {
        $(this).attr("src","images/UpButtonOff.png");

      }
    );
	
	
	$('.workContainer').click(function(){
		$(this.projectInfo).animate({top: 6}, 800);
	});
	
	$(".workContainer").hover(
      function () {
        $(this).find(".projectInfo").animate({top: 6}, 500);

      }, 
      function () {
        $(this).find(".projectInfo").animate({top: 261}, 500);

      }
    );
});

///Preload Images

if (document.images)
{
  pic1= new Image(372,137); 
  pic1.src="images/textAreaOver.jpg"; 

  pic2= new Image(66,90); 
  pic2.src="images/UpButtonOn.png"; 

  pic3= new Image(372,30); 
  pic3.src="images/FormFieldOver.jpg"; 
  
  pic4= new Image(16, 16); 
  pic4.src="images/ajax-loader.gif"; 

}


