$.noConflict();
// Fade out opposite logo when hovering enter
jQuery(function ($) {
// Fade out Yurtel Fabrications when mouseover Yurtel Enter
$("div#enter-yurtel").mouseover(function () {
$("div#logo-yurtel-fab").animate({ opacity: 0.25 }, 200 ); 
});
// Fade in Yurtel Fabrications when mouseout Yurtel Enter
$("div#enter-yurtel").mouseout(function () {
$("div#logo-yurtel-fab").animate({ opacity: 1 }, 200 );
});
// Fade out Yurtel when mouseover Yurtel Fabrications Enter
$("div#enter-yurtel-fab").mouseover(function () {
$("div#logo-yurtel").animate({ opacity: 0.25 }, 200 );	
});
// Fade in Yurtel when mouseout Yurtel Fabrications Enter
$("div#enter-yurtel-fab").mouseout(function () {
$("div#logo-yurtel").animate({ opacity: 1 }, 200 );
});
});






