var $ = jQuery.noConflict();
$(document).ready(function() {

	$("ul#menu-fejlec-menu li a").corner("top 5px");
	$("img.attachment-category-thumb, img.attachment-featured-thumb, img.attachment-homepage-thumb, img.attachment-media-thumb").corner("10px");
	$("h3.gray").corner("top 10px");
	
	$("li:last-child").addClass("last");
	
	$("#header ul.menu li").hover(function() {
    $(this).find('ul.sub-menu').stop(true, true).animate({ "height": "show", "opacity": "show" }, 200 );
    }, function(){
    $(this).find('ul.sub-menu').stop(true, true).animate({ "height": "hide", "opacity": "hide" }, 200 );
    });
	
});
