$(function () {

$('.dropdown').each(function () {
$(this).parent().eq(0).hoverIntent({
timeout: 1000,
over: function () {
var current = $('.dropdown:eq(0)', this);
current.slideDown(1000);
},
out: function () {
var current = $('.dropdown:eq(0)', this);
current.fadeOut(200);
}
});
});

$('.dropdown a').hover(function () {
$(this).stop(true).animate({paddingLeft: '1.4em'}, {speed: 70, easing: 'easeOutBack'});
}, function () {
$(this).stop(true).animate({paddingLeft: '0.7em'}, {speed: 70, easing: 'easeOutBounce'});
});

$('#subcol a').hover(function () {
$(this).stop(true).animate({paddingLeft: '1.4em'}, {speed: 70, easing: 'easeOutBack'});
}, function () {
$(this).stop(true).animate({paddingLeft: '0em'}, {speed: 70, easing: 'easeOutBounce'});
});
pic1 = new Image(310, 672);
pic1.src = "images/dropdown.png";

pic2 = new Image(4, 40);
pic2.src = "images/dropselectionleft.png";

pic3 = new Image(394, 40);
pic3.src = "images/dropselectionright.png";

});

