$(document).ready(function(){
	$('.top_menu li.headlink').hover(
		function() { $('ul', this).css('display', 'block'); },
		function() { $('ul', this).css('display', 'none'); });

    setType();

});


function setType()
{
    var value=$(".radio_price").filter(":checked").val();

    if (value)
    {
        $("#type").val(value);
    }

    $(".radio_price").change(function()
    {
        var value=$(".radio_price").filter(":checked").val();

        if (value)
        {
            $("#type").val(value);
        }
    });
}
