// For home page 4 Focus Boxes

jQuery(document).ready(function($){

$("#homeRowTwo .homeBox").hover(function(){
$(this).find("img").fadeTo("fast", 0.6); // This should set the opacity to 100% on hover
},function(){
$(this).find("img").fadeTo("fast", 1); // This should set the opacity back to 60% on mouseout
});
});

// For wine portfolio

// Put all your code in your document ready area
jQuery(document).ready(function($){

// was this, now in noConflict mode: $(document).ready(function(){

$(".wineRangePic img").fadeTo("fast", 1); // This sets the opacity of the thumbs to fade down to 60% when the page loads

$(".wineRangePic img").hover(function(){
$(this).fadeTo("fast", 0.6); // This should set the opacity to 100% on hover
},function(){
$(this).fadeTo("fast", 1); // This should set the opacity back to 60% on mouseout
});
});

// For Individual wines pages

jQuery(document).ready(function($){
$("#wineNavVertical img").fadeTo("fast", 0.4); // This sets the opacity of the thumbs to fade down to 60% when the page loads

$("#wineNavVertical img.current").fadeTo("fast", 1.0); // This sets the opacity of the thumbs to fade down to 60% when the page loads

$("#wineNavVertical img").hover(function(){
$(this).fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
},function(){
$(this).fadeTo("fast", 0.4); // This should set the opacity back to 60% on mouseout
});
});

// For Order Flags

jQuery(document).ready(function($){
$("#wineOrder img").fadeTo("fast", 0.4); // This sets the opacity of the thumbs to fade down to 60% when the page loads

$("#wineOrder img").hover(function(){
$(this).fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
},function(){
$(this).fadeTo("fast", 0.4); // This should set the opacity back to 60% on mouseout
});
});
