$(document).ready(function() {
	
	// :last-child	
	$('.popular-menu > li:last').addClass('last-child');
	
	// jCarousel > PersonalSlide
	jQuery('#personal-slide').jcarousel({
        vertical: true,
        scroll: 2
    });	
	

	// Cycle > PopularSlide
	$('#popular-slide').cycle({
		fx:     'scrollRight',
		timeout: 0,
		speed: 1500,
		pager:  '#popular-nav',
		pagerEvent: 'click',
		pagerAnchorBuilder: function(idx, slide) {
			return '#popular-nav li:eq(' + idx + ') a';
		}
	
	});


	// SimpleModal > Popup 1
	$('#popup-link-1').click(function() {
		var url = "http://www.womenatwork.co.il/wp-content/themes/naamat/popup-1.html";
		displayModel(url);
	});

	// SimpleModal > Popup 2	
	$('#popup-link-2').click(function() {
		var url = "http://www.womenatwork.co.il/wp-content/themes/naamat/popup-2.html";
		displayModel(url);
	});
	
	function displayModel(url) {
		$.modal("<iframe width='545' height='117' src='" + url + "' frameborder='0' scrolling='no' marginwidth=0 marginheight=0></iframe>", {
			minHeight: 117, 
			minWidth: 545
		});
	}
	
});