/**
 * @author shevchenquot
 */
	
$(document).ready(function() {
	$('#type_radio select').change(function() {
		var value = $(this).val() * 1 - 1;
		$('#category_lists select').hide();
		$('#category_lists select:eq(' + value + ')').show();
	});
	
	$('#areas1').change(function() {
		$('#areas2_lists select').hide();
		$('#areas2_' + $(this).val()).show();
	});
	
	/*myLoveAdverts = new LoveAdverts();
	myLoveAdverts.init();
	myLoveAdverts.start();*/
	
	// Sliders for love ads
	$('.nivoSlider img').each(function() {
		if ($(this).width() < 145 || $(this).height() < 109) {
			console.log($(this).attr('src'));
			$(this).parent('a').replaceWith('');
		}
	});
	$('.nivoSlider').nivoSlider({
		effect: 'fade',
		pauseTime: 5000,
		animSpeed: 1000,
		directionNav: false,
		controlNav: false,
		captionOpacity: 0.6
	});
	
	$('#budget_min, #budget_max, #surface_min, #surface_max').focus(function() {
		if ($(this).val() == 'min' || $(this).val() == 'max') {
			$(this).val('');
		}
	});
});
