jQuery(document).ready(function() {
// Menu
jQuery(jQuery('.block').get().reverse()).each(function() {
var bname = jQuery(this).attr('data-name');
var bid = jQuery(this).attr('id');
if (bname) {
jQuery('.menuwrapper .menu ul').prepend('
'+bname+'');
}
});
// SREDI MENI DA KAD JE MENI PRAZAN RADI
jQuery('.menuwrapper .menu ul').prepend('HOME').append('CONTACT');
// Price Box
jQuery('.service-offer').each(function() {
var str = jQuery(this).text();
var str = str.split(',');
for (var i = 0; i < str.length; i++) {
str[i] = ''+str[i]+'';
}
jQuery(this).html(str);
});
// About background
jQuery('.about-box-content').first().parent().parent().parent().addClass('aboutColor');
// Subscribe
jQuery('#dsubscribers-container input[type="submit"]').val('Subscribe').addClass('btn').addClass('btn-news').parent('form').before('Stay in the loop with the latest news
');
jQuery('#dsubscribers-container').closest('.block').addClass('sub');
// Portfolio
jQuery('.portfolio-item-block').parent().eq(2).after('');
jQuery('.portfolio-list').closest('.container').addClass('static');
});