  var params = {
    menu: "false",
    wmode: "transparent"
  };
   swfobject.embedSWF("../images/globe.swf", "globe", "80", "80", "7.0.0", "", "", params);

$(document).ready(function() {
	$('a[rel*="lightBox"]').lightBox();

	$('#f_cautare #tip_imobil').change(function() {
		if ($('#f_cautare #tip_imobil').val() != 'Apartament' && $('#f_cautare #tip_imobil').val() != 'Casa') {
			$('#f_cautare #container-camere').css('display', 'none');
		} else {
			 $('#f_cautare #container-camere').css('display', 'inline-block');
		}
	});
});

function toggle_block(objStr) {
jqueryObj = "div#" + objStr;

$(jqueryObj).slideToggle();
}
