$(document).ready( function(){
	

	
	$(".buy-btn").corner('10px');
	$(".b-content").corner('6px');
	$(".b-items-list-open").corner('10px');
	$(".b-subscribe-submit").corner('10px');
	$(".b-groups-menu li.active a").corner('10px');
	

	
	$("li.sub").hover(
		function () {
			$(this).addClass('active');
		}, 
		function () {
			$(this).removeClass('active');
		}
	);
	$(".b-langs").hover(
			function () {
				$('div',this).show();
			}, 
			function () {
				$('div',this).hide();
			}
		);	
});
$.fn.image = function(src, f, e){ 
	var i = new Image();
	var t = $(this);
	$(i).load(function(){ t.empty(); t.append($(this)); f(); }).error(e).attr('src', src);
}
function submitForm(form_id, target, url) { 
	$('#' + form_id).ajaxSubmit({
		target:        '#' + target,
		url:           url/*,
		beforeSubmit:  function(){ $('#tabs_ajax_status').show() },
		success:       function(){ $('#tabs_ajax_status').hide() }*/
	});
	return false; 
}
