
/*----------------Initiate Feature Box----------------*/
var ids=new Array('f1','f2','f3','f4','f5');

$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
 
 
 $('.homethumb').hover(function() {
	$(this).attr("src","../assets/images/hometransfull.png");
		}, function() {
	$(this).attr("src","../assets/images/hometrans.png");
});

 
	hideall();
	$('#f1').show();
  
	function hideall(){
		//loop through the array and hide each element by id
  $('#f1').hide();
  $('#f2').hide();
  $('#f3').hide();
  $('#f4').hide();
  $('#f5').hide();  
	} 
 
 // toggles the slickbox on clicking the noted link  
  $('#fm1').mouseover(function() {
	  hideall();
    $('#f1').show(400);
    //return false;
  });
	
  $('#fm2').mouseover(function() {
		  hideall();
    $('#f2').show(400);
    //return false;
  });
	
  $('#fm3').mouseover(function() {
		hideall();
    $('#f3').show(400);
    //return false;
  });
	
  $('#fm4').mouseover(function() {
		  hideall();
    $('#f4').show(400);
    //return false;
  });
	
  $('#fm5').mouseover(function() {
		  hideall();
    $('#f5').show(400);
    //return false;
  });
	
});
/*----------------End Feature Box----------------*/




/*----------------Initiate JQuery Tabs----------------*/
  $(document).ready(function() {
    $("#tabs").tabs();
  });
/*----------------End JQuery Tabs----------------*/
	



