$(document).ready(function() {
	
/*preloading images*/
var newPhoto1 = new Image();
newPhoto1.src = 'https://www.interactivehealthpartner.com/ihpimages/home2.jpg';
var newPhoto2 = new Image();
newPhoto2.src = 'https://www.interactivehealthpartner.com/ihpimages/whyihp2.jpg';
var newPhoto3 = new Image();
newPhoto3.src = 'https://www.interactivehealthpartner.com/ihpimages/howihp2.jpg';
var newPhoto4 = new Image();
newPhoto4.src = 'https://www.interactivehealthpartner.com/ihpimages/about2.jpg';
var newPhoto5 = new Image();
newPhoto5.src = 'https://www.interactivehealthpartner.com/ihpimages/navdropdown/dropbottom.png';
var newPhoto6 = new Image();
newPhoto6.src = 'https://www.interactivehealthpartner.com/ihpimages/navdropdown/droprpt.png';
var newPhoto7 = new Image();
newPhoto7.src = 'https://www.interactivehealthpartner.com/ihpimages/navdropdown/droptophome.png';
var newPhoto8 = new Image();
newPhoto8.src = 'https://www.interactivehealthpartner.com/ihpimages/navdropdown/droptopwhyihp.png';
var newPhoto9 = new Image();
newPhoto9.src = 'https://www.interactivehealthpartner.com/ihpimages/navdropdown/droptophowihp.png';
var newPhoto10 = new Image();
newPhoto10.src = 'https://www.interactivehealthpartner.com/ihpimages/navdropdown/droptopabout.png';
var newPhoto11 = new Image();
newPhoto11.src = 'https://www.interactivehealthpartner.com/ihpimages/navdropdown/reddropbtn.jpg';
  
/*nav hover states*/
$('.top').eq(0).hover(function () {
$('#swap1').attr('src','https://www.interactivehealthpartner.com/ihpimages/home2.jpg');
$('.drop1').fadeIn(0);
}, function () {
$('#swap1').attr('src','https://www.interactivehealthpartner.com/ihpimages/home.jpg');
$('.drop1').fadeOut(0);
});

$('.top').eq(1).hover(function () {
$('#swap2').attr('src','https://www.interactivehealthpartner.com/ihpimages/whyihp2.jpg');
$('.drop2').fadeIn(0);
}, function () {
$('#swap2').attr('src','https://www.interactivehealthpartner.com/ihpimages/whyihp.jpg');
$('.drop2').fadeOut(0);
});

$('.top').eq(2).hover(function () {
$('#swap3').attr('src','https://www.interactivehealthpartner.com/ihpimages/howihp2.jpg');
$('.drop3').fadeIn(0);
}, function () {
$('#swap3').attr('src','https://www.interactivehealthpartner.com/ihpimages/howihp.jpg');
$('.drop3').fadeOut(0);
});

$('.top').eq(3).hover(function () {
$('#swap4').attr('src','https://www.interactivehealthpartner.com/ihpimages/about2.jpg');
$('.drop4').fadeIn(0);
}, function () {
$('#swap4').attr('src','https://www.interactivehealthpartner.com/ihpimages/about.jpg');
$('.drop4').fadeOut(0);
});


});
