﻿//jQuery.noConflict(); 
     
//jQuery(function(){
//    
//});

$(document).ready(function() {

    $('input[title!=""]').hint();

    $('#mainnavigation ul li').hover(function() {
        $(this).css("background-position", "center 0px");
		$(this).addClass("hover");
	},function() {
		$(this).removeClass("hover");
		$(this).css("background-position", "center 6px");
	});
	
	
	$('#subnav').children(":first").addClass("firstsub");
	
	
	$('#imagenav ul li').hover(function() {
        
	},function() {
		
	});
	
    
	
});
