$(document).ready(function(){
    $('select[name=set_currency]').change(function(){
        $('form[name=curr]').submit();
    });


	$('div#rbs img').css('opacity', 0.3).hover(function(){
		$(this).css('opacity', 1);
	},function(){
		$(this).css('opacity', 0.3);
	});
	
	$('input[rel=hexer]').change(function(){
	    if ($(this).val().length == 6) 
	    {
	       $(this).css('background', '#'+$(this).val());
        }
	});
});